home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Announcer / Announcer.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  274 b   |  27 lines  |  [TEXT/CWIE]

  1. // Announcer.h
  2.  
  3. #ifndef Announcer_h
  4. #define Announcer_h
  5.  
  6. #ifndef ListOf_h
  7. #include "ListOf.h"
  8. #endif
  9.  
  10. class EarBase;
  11.  
  12. class Announcer
  13.   {
  14.     friend class EarBase;
  15.     
  16.     private:
  17.         ListOf<EarBase> ears;
  18.     
  19.     public:
  20.         Announcer();
  21.         ~Announcer();
  22.         
  23.         void Announce();
  24.   };
  25.  
  26. #endif
  27.